func reflect.stringFor

34 uses

	reflect (current package)
		type.go#L705: 	panic("reflect: Elem of invalid type " + stringFor(t))
		type.go#L1535: 			if !(stringFor(rtypeOff(section, offs[h])) >= s) {
		type.go#L1548: 			if stringFor(typ) != s {
		type.go#L1606: 		s = "chan<- " + stringFor(typ)
		type.go#L1608: 		s = "<-chan " + stringFor(typ)
		type.go#L1610: 		typeStr := stringFor(typ)
		type.go#L1654: 		panic("reflect.MapOf: invalid key type " + stringFor(ktyp))
		type.go#L1664: 	s := "map[" + stringFor(ktyp) + "]" + stringFor(etyp)
		type.go#L1837: func stringFor(t *abi.Type) string {
		type.go#L1851: 			repr = append(repr, stringFor((*sliceType)(unsafe.Pointer(t)).Elem)...)
		type.go#L1853: 			repr = append(repr, stringFor(t)...)
		type.go#L1867: 		repr = append(repr, stringFor(t)...)
		type.go#L1896: 		panic("isReflexive called on non-key type " + stringFor(t))
		type.go#L1923: 		panic("needKeyUpdate called on non-key type " + stringFor(t))
		type.go#L2016: 	s := "bucket(" + stringFor(ktyp) + "," + stringFor(etyp) + ")"
		type.go#L2082: 	s := "[]" + stringFor(typ)
		type.go#L2204: 					panic("reflect.StructOf: illegal embedded field type " + stringFor(ft))
		type.go#L2343: 		repr = append(repr, (" " + stringFor(ft))...)
		type.go#L2612: 		panic("reflect.typeptrdata: unexpected type, " + stringFor(t))
		type.go#L2638: 	s := "[" + strconv.Itoa(length) + "]" + stringFor(typ)
		type.go#L2801: 		panic("reflect: funcLayout of non-func type " + stringFor(&t.Type))
		type.go#L2804: 		panic("reflect: funcLayout with interface receiver " + stringFor(rcvr))
		type.go#L2831: 		s = "methodargs(" + stringFor(rcvr) + ")(" + stringFor(&t.Type) + ")"
		type.go#L2833: 		s = "funcargs(" + stringFor(&t.Type) + ")"
		value.go#L452: 			panic("reflect: " + op + " using " + xt.String() + " as type " + stringFor(targ))
		value.go#L499: 		println("reflect.call", stringFor(&t.Type))
		value.go#L646: 					print("kind=", steps[0].kind, ", type=", stringFor(tv), "\n")
		value.go#L772: 					print("kind=", steps[0].kind, ", type=", stringFor(typ), "\n")
		value.go#L3307: 	panic(context + ": value of type " + stringFor(v.typ()) + " is not assignable to type " + stringFor(dst))
		value.go#L3319: 		panic("reflect.Value.Convert: value of type " + stringFor(v.typ()) + " cannot be converted to type " + t.String())